home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / system / mail / transpor / ifmail23.z / ifmail23 / ifmail / ifgate / rfcmsg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-15  |  235 b   |  15 lines

  1. #ifndef _RFCMSG_H
  2. #define _RFCMSG_H
  3.  
  4. typedef struct _rfcmsg {
  5.     struct    _rfcmsg *next;
  6.     char    *key;
  7.     char    *val;
  8. } rfcmsg;
  9.  
  10. rfcmsg *parsrfc(FILE *);
  11. void tidyrfc(rfcmsg *);
  12. void dumpmsg(rfcmsg *,FILE *);
  13. char *hdr(char *,rfcmsg *);
  14. #endif
  15.